home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / perl5 / 5.8.7 / Pod / Find.pm < prev    next >
Text File  |  2006-04-25  |  15KB  |  524 lines

  1. #############################################################################  
  2. # Pod/Find.pm -- finds files containing POD documentation
  3. #
  4. # Author: Marek Rouchal <marekr@cpan.org>
  5. # Copyright (C) 1999-2000 by Marek Rouchal (and borrowing code
  6. # from Nick Ing-Simmon's PodToHtml). All rights reserved.
  7. # This file is part of "PodParser". Pod::Find is free software;
  8. # you can redistribute it and/or modify it under the same terms
  9. # as Perl itself.
  10. #############################################################################
  11.  
  12. package Pod::Find;
  13.  
  14. use vars qw($VERSION);
  15. $VERSION = 1.30;   ## Current version of this package
  16. require  5.005;   ## requires this Perl version or later
  17. use Carp;
  18.  
  19. #############################################################################
  20.  
  21. =head1 NAME
  22.  
  23. Pod::Find - find POD documents in directory trees
  24.  
  25. =head1 SYNOPSIS
  26.  
  27.   use Pod::Find qw(pod_find simplify_name);
  28.   my %pods = pod_find({ -verbose => 1, -inc => 1 });
  29.   foreach(keys %pods) {
  30.      print "found library POD `$pods{$_}' in $_\n";
  31.   }
  32.  
  33.   print "podname=",simplify_name('a/b/c/mymodule.pod'),"\n";
  34.  
  35.   $location = pod_where( { -inc => 1 }, "Pod::Find" );
  36.  
  37. =head1 DESCRIPTION
  38.  
  39. B<Pod::Find> provides a set of functions to locate POD files.  Note that
  40. no function is exported by default to avoid pollution of your namespace,
  41. so be sure to specify them in the B<use> statement if you need them:
  42.  
  43.   use Pod::Find qw(pod_find);
  44.  
  45. From this version on the typical SCM (software configuration management)
  46. files/directories like RCS, CVS, SCCS, .svn are ignored.
  47.  
  48. =cut
  49.  
  50. use strict;
  51. #use diagnostics;
  52. use Exporter;
  53. use File::Spec;
  54. use File::Find;
  55. use Cwd;
  56.  
  57. use vars qw(@ISA @EXPORT_OK $VERSION);
  58. @ISA = qw(Exporter);
  59. @EXPORT_OK = qw(&pod_find &simplify_name &pod_where &contains_pod);
  60.  
  61. # package global variables
  62. my $SIMPLIFY_RX;
  63.  
  64. =head2 C<pod_find( { %opts } , @directories )>
  65.  
  66. The function B<pod_find> searches for POD documents in a given set of
  67. files and/or directories. It returns a hash with the file names as keys
  68. and the POD name as value. The POD name is derived from the file name
  69. and its position in the directory tree.
  70.  
  71. E.g. when searching in F<$HOME/perl5lib>, the file
  72. F<$HOME/perl5lib/MyModule.pm> would get the POD name I<MyModule>,
  73. whereas F<$HOME/perl5lib/Myclass/Subclass.pm> would be
  74. I<Myclass::Subclass>. The name information can be used for POD
  75. translators.
  76.  
  77. Only text files containing at least one valid POD command are found.
  78.  
  79. A warning is printed if more than one POD file with the same POD name
  80. is found, e.g. F<CPAN.pm> in different directories. This usually
  81. indicates duplicate occurrences of modules in the I<@INC> search path.
  82.  
  83. B<OPTIONS> The first argument for B<pod_find> may be a hash reference
  84. with options. The rest are either directories that are searched
  85. recursively or files.  The POD names of files are the plain basenames
  86. with any Perl-like extension (.pm, .pl, .pod) stripped.
  87.  
  88. =over 4
  89.  
  90. =item C<-verbose =E<gt> 1>
  91.  
  92. Print progress information while scanning.
  93.  
  94. =item C<-perl =E<gt> 1>
  95.  
  96. Apply Perl-specific heuristics to find the correct PODs. This includes
  97. stripping Perl-like extensions, omitting subdirectories that are numeric
  98. but do I<not> match the current Perl interpreter's version id, suppressing
  99. F<site_perl> as a module hierarchy name etc.
  100.  
  101. =item C<-script =E<gt> 1>
  102.  
  103. Search for PODs in the current Perl interpreter's installation 
  104. B<scriptdir>. This is taken from the local L<Config|Config> module.
  105.  
  106. =item C<-inc =E<gt> 1>
  107.  
  108. Search for PODs in the current Perl interpreter's I<@INC> paths. This
  109. automatically considers paths specified in the C<PERL5LIB> environment
  110. as this is prepended to I<@INC> by the Perl interpreter itself.
  111.  
  112. =back
  113.  
  114. =cut
  115.  
  116. # return a hash of the POD files found
  117. # first argument may be a hashref (options),
  118. # rest is a list of directories to search recursively
  119. sub pod_find
  120. {
  121.     my %opts;
  122.     if(ref $_[0]) {
  123.         %opts = %{shift()};
  124.     }
  125.  
  126.     $opts{-verbose} ||= 0;
  127.     $opts{-perl}    ||= 0;
  128.  
  129.     my (@search) = @_;
  130.  
  131.     if($opts{-script}) {
  132.         require Config;
  133.         push(@search, $Config::Config{scriptdir})
  134.             if -d $Config::Config{scriptdir};
  135.         $opts{-perl} = 1;
  136.     }
  137.  
  138.     if($opts{-inc}) {
  139.         if ($^O eq 'MacOS') {
  140.             # tolerate '.', './some_dir' and '(../)+some_dir' on Mac OS
  141.             my @new_INC = @INC;
  142.             for (@new_INC) {
  143.                 if ( $_ eq '.' ) {
  144.                     $_ = ':';
  145.                 } elsif ( $_ =~ s|^((?:\.\./)+)|':' x (length($1)/3)|e ) {
  146.                     $_ = ':'. $_;
  147.                 } else {
  148.                     $_ =~ s|^\./|:|;
  149.                 }
  150.             }
  151.             push(@search, grep($_ ne File::Spec->curdir, @new_INC));
  152.         } else {
  153.             push(@search, grep($_ ne File::Spec->curdir, @INC));
  154.         }
  155.  
  156.         $opts{-perl} = 1;
  157.     }
  158.  
  159.     if($opts{-perl}) {
  160.         require Config;
  161.         # this code simplifies the POD name for Perl modules:
  162.         # * remove "site_perl"
  163.         # * remove e.g. "i586-linux" (from 'archname')
  164.         # * remove e.g. 5.00503
  165.         # * remove pod/ if followed by *.pod (e.g. in pod/perlfunc.pod)
  166.  
  167.         # Mac OS:
  168.         # * remove ":?site_perl:"
  169.         # * remove :?pod: if followed by *.pod (e.g. in :pod:perlfunc.pod)
  170.  
  171.         if ($^O eq 'MacOS') {
  172.             $SIMPLIFY_RX =
  173.               qq!^(?i:\:?site_perl\:|\:?pod\:(?=.*?\\.pod\\z))*!;
  174.         } else {
  175.             $SIMPLIFY_RX =
  176.               qq!^(?i:site(_perl)?/|\Q$Config::Config{archname}\E/|\\d+\\.\\d+([_.]?\\d+)?/|pod/(?=.*?\\.pod\\z))*!;
  177.         }
  178.     }
  179.  
  180.     my %dirs_visited;
  181.     my %pods;
  182.     my %names;
  183.     my $pwd = cwd();
  184.  
  185.     foreach my $try (@search) {
  186.         unless(File::Spec->file_name_is_absolute($try)) {
  187.             # make path absolute
  188.             $try = File::Spec->catfile($pwd,$try);
  189.         }
  190.         # simplify path
  191.         # on VMS canonpath will vmsify:[the.path], but File::Find::find
  192.         # wants /unixy/paths
  193.         $try = File::Spec->canonpath($try) if ($^O ne 'VMS');
  194.         $try = VMS::Filespec::unixify($try) if ($^O eq 'VMS');
  195.         my $name;
  196.         if(-f $try) {
  197.             if($name = _check_and_extract_name($try, $opts{-verbose})) {
  198.                 _check_for_duplicates($try, $name, \%names, \%pods);
  199.             }
  200.             next;
  201.         }
  202.         my $root_rx = $^O eq 'MacOS' ? qq!^\Q$try\E! : qq!^\Q$try\E/!;
  203.         File::Find::find( sub {
  204.             my $item = $File::Find::name;
  205.             if(-d) {
  206.                 if($item =~ m{/(?:RCS|CVS|SCCS|\.svn)$}) {
  207.                     $File::Find::prune = 1;
  208.                     return;
  209.                 }
  210.                 elsif($dirs_visited{$item}) {
  211.                     warn "Directory '$item' already seen, skipping.\n"
  212.                         if($opts{-verbose});
  213.                     $File::Find::prune = 1;
  214.                     return;
  215.                 }
  216.                 else {
  217.                     $dirs_visited{$item} = 1;
  218.                 }
  219.                 if($opts{-perl} && /^(\d+\.[\d_]+)\z/s && eval "$1" != $]) {
  220.                     $File::Find::prune = 1;
  221.                     warn "Perl $] version mismatch on $_, skipping.\n"
  222.                         if($opts{-verbose});
  223.                 }
  224.                 return;
  225.             }
  226.             if($name = _check_and_extract_name($item, $opts{-verbose}, $root_rx)) {
  227.                 _check_for_duplicates($item, $name, \%names, \%pods);
  228.             }
  229.         }, $try); # end of File::Find::find
  230.     }
  231.     chdir $pwd;
  232.     %pods;
  233. }
  234.  
  235. sub _check_for_duplicates {
  236.     my ($file, $name, $names_ref, $pods_ref) = @_;
  237.     if($$names_ref{$name}) {
  238.         warn "Duplicate POD found (shadowing?): $name ($file)\n";
  239.         warn "    Already seen in ",
  240.             join(' ', grep($$pods_ref{$_} eq $name, keys %$pods_ref)),"\n";
  241.     }
  242.     else {
  243.         $$names_ref{$name} = 1;
  244.     }
  245.     $$pods_ref{$file} = $name;
  246. }
  247.  
  248. sub _check_and_extract_name {
  249.     my ($file, $verbose, $root_rx) = @_;
  250.  
  251.     # check extension or executable flag
  252.     # this involves testing the .bat extension on Win32!
  253.     unless(-f $file && -T _ && ($file =~ /\.(pod|pm|plx?)\z/i || -x _ )) {
  254.       return undef;
  255.     }
  256.  
  257.     return undef unless contains_pod($file,$verbose);
  258.  
  259.     # strip non-significant path components
  260.     # TODO what happens on e.g. Win32?
  261.     my $name = $file;
  262.     if(defined $root_rx) {
  263.         $name =~ s!$root_rx!!s;
  264.         $name =~ s!$SIMPLIFY_RX!!os if(defined $SIMPLIFY_RX);
  265.     }
  266.     else {
  267.         if ($^O eq 'MacOS') {
  268.             $name =~ s/^.*://s;
  269.         } else {
  270.             $name =~ s:^.*/::s;
  271.         }
  272.     }
  273.     _simplify($name);
  274.     $name =~ s!/+!::!g; #/
  275.     if ($^O eq 'MacOS') {
  276.         $name =~ s!:+!::!g; # : -> ::
  277.     } else {
  278.         $name =~ s!/+!::!g; # / -> ::
  279.     }
  280.     $name;
  281. }
  282.  
  283. =head2 C<simplify_name( $str )>
  284.  
  285. The function B<simplify_name> is equivalent to B<basename>, but also
  286. strips Perl-like extensions (.pm, .pl, .pod) and extensions like
  287. F<.bat>, F<.cmd> on Win32 and OS/2, or F<.com> on VMS, respectively.
  288.  
  289. =cut
  290.  
  291. # basic simplification of the POD name:
  292. # basename & strip extension
  293. sub simplify_name {
  294.     my ($str) = @_;
  295.     # remove all path components
  296.     if ($^O eq 'MacOS') {
  297.         $str =~ s/^.*://s;
  298.     } else {
  299.         $str =~ s:^.*/::s;
  300.     }
  301.     _simplify($str);
  302.     $str;
  303. }
  304.  
  305. # internal sub only
  306. sub _simplify {
  307.     # strip Perl's own extensions
  308.     $_[0] =~ s/\.(pod|pm|plx?)\z//i;
  309.     # strip meaningless extensions on Win32 and OS/2
  310.     $_[0] =~ s/\.(bat|exe|cmd)\z//i if($^O =~ /mswin|os2/i);
  311.     # strip meaningless extensions on VMS
  312.     $_[0] =~ s/\.(com)\z//i if($^O eq 'VMS');
  313. }
  314.  
  315. # contribution from Tim Jenness <t.jenness@jach.hawaii.edu>
  316.  
  317. =head2 C<pod_where( { %opts }, $pod )>
  318.  
  319. Returns the location of a pod document given a search directory
  320. and a module (e.g. C<File::Find>) or script (e.g. C<perldoc>) name.
  321.  
  322. Options:
  323.  
  324. =over 4
  325.  
  326. =item C<-inc =E<gt> 1>
  327.  
  328. Search @INC for the pod and also the C<scriptdir> defined in the
  329. L<Config|Config> module.
  330.  
  331. =item C<-dirs =E<gt> [ $dir1, $dir2, ... ]>
  332.  
  333. Reference to an array of search directories. These are searched in order
  334. before looking in C<@INC> (if B<-inc>). Current directory is used if
  335. none are specified.
  336.  
  337. =item C<-verbose =E<gt> 1>
  338.  
  339. List directories as they are searched
  340.  
  341. =back
  342.  
  343. Returns the full path of the first occurrence to the file.
  344. Package names (eg 'A::B') are automatically converted to directory
  345. names in the selected directory. (eg on unix 'A::B' is converted to
  346. 'A/B'). Additionally, '.pm', '.pl' and '.pod' are appended to the
  347. search automatically if required.
  348.  
  349. A subdirectory F<pod/> is also checked if it exists in any of the given
  350. search directories. This ensures that e.g. L<perlfunc|perlfunc> is
  351. found.
  352.  
  353. It is assumed that if a module name is supplied, that that name
  354. matches the file name. Pods are not opened to check for the 'NAME'
  355. entry.
  356.  
  357. A check is made to make sure that the file that is found does 
  358. contain some pod documentation.
  359.  
  360. =cut
  361.  
  362. sub pod_where {
  363.  
  364.   # default options
  365.   my %options = (
  366.          '-inc' => 0,
  367.          '-verbose' => 0,
  368.          '-dirs' => [ File::Spec->curdir ],
  369.         );
  370.  
  371.   # Check for an options hash as first argument
  372.   if (defined $_[0] && ref($_[0]) eq 'HASH') {
  373.     my $opt = shift;
  374.  
  375.     # Merge default options with supplied options
  376.     %options = (%options, %$opt);
  377.   }
  378.  
  379.   # Check usage
  380.   carp 'Usage: pod_where({options}, $pod)' unless (scalar(@_));
  381.  
  382.   # Read argument
  383.   my $pod = shift;
  384.  
  385.   # Split on :: and then join the name together using File::Spec
  386.   my @parts = split (/::/, $pod);
  387.  
  388.   # Get full directory list
  389.   my @search_dirs = @{ $options{'-dirs'} };
  390.  
  391.   if ($options{'-inc'}) {
  392.  
  393.     require Config;
  394.  
  395.     # Add @INC
  396.     if ($^O eq 'MacOS' && $options{'-inc'}) {
  397.         # tolerate '.', './some_dir' and '(../)+some_dir' on Mac OS
  398.         my @new_INC = @INC;
  399.         for (@new_INC) {
  400.             if ( $_ eq '.' ) {
  401.                 $_ = ':';
  402.             } elsif ( $_ =~ s|^((?:\.\./)+)|':' x (length($1)/3)|e ) {
  403.                 $_ = ':'. $_;
  404.             } else {
  405.                 $_ =~ s|^\./|:|;
  406.             }
  407.         }
  408.         push (@search_dirs, @new_INC);
  409.     } elsif ($options{'-inc'}) {
  410.         push (@search_dirs, @INC);
  411.     }
  412.  
  413.     # Add location of pod documentation for perl man pages (eg perlfunc)
  414.     # This is a pod directory in the private install tree
  415.     #my $perlpoddir = File::Spec->catdir($Config::Config{'installprivlib'},
  416.     #                    'pod');
  417.     #push (@search_dirs, $perlpoddir)
  418.     #  if -d $perlpoddir;
  419.  
  420.     # Add location of binaries such as pod2text
  421.     push (@search_dirs, $Config::Config{'scriptdir'})
  422.       if -d $Config::Config{'scriptdir'};
  423.   }
  424.  
  425.   warn "Search path is: ".join(' ', @search_dirs)."\n"
  426.         if $options{'-verbose'};
  427.  
  428.   # Loop over directories
  429.   Dir: foreach my $dir ( @search_dirs ) {
  430.  
  431.     # Don't bother if can't find the directory
  432.     if (-d $dir) {
  433.       warn "Looking in directory $dir\n" 
  434.         if $options{'-verbose'};
  435.  
  436.       # Now concatenate this directory with the pod we are searching for
  437.       my $fullname = File::Spec->catfile($dir, @parts);
  438.       warn "Filename is now $fullname\n"
  439.         if $options{'-verbose'};
  440.  
  441.       # Loop over possible extensions
  442.       foreach my $ext ('', '.pod', '.pm', '.pl') {
  443.         my $fullext = $fullname . $ext;
  444.         if (-f $fullext && 
  445.          contains_pod($fullext, $options{'-verbose'}) ) {
  446.           warn "FOUND: $fullext\n" if $options{'-verbose'};
  447.           return $fullext;
  448.         }
  449.       }
  450.     } else {
  451.       warn "Directory $dir does not exist\n"
  452.         if $options{'-verbose'};
  453.       next Dir;
  454.     }
  455.     # for some strange reason the path on MacOS/darwin/cygwin is
  456.     # 'pods' not 'pod'
  457.     # this could be the case also for other systems that
  458.     # have a case-tolerant file system, but File::Spec
  459.     # does not recognize 'darwin' yet. And cygwin also has "pods",
  460.     # but is not case tolerant. Oh well...
  461.     if((File::Spec->case_tolerant || $^O =~ /macos|darwin|cygwin/i)
  462.      && -d File::Spec->catdir($dir,'pods')) {
  463.       $dir = File::Spec->catdir($dir,'pods');
  464.       redo Dir;
  465.     }
  466.     if(-d File::Spec->catdir($dir,'pod')) {
  467.       $dir = File::Spec->catdir($dir,'pod');
  468.       redo Dir;
  469.     }
  470.   }
  471.   # No match;
  472.   return undef;
  473. }
  474.  
  475. =head2 C<contains_pod( $file , $verbose )>
  476.  
  477. Returns true if the supplied filename (not POD module) contains some pod
  478. information.
  479.  
  480. =cut
  481.  
  482. sub contains_pod {
  483.   my $file = shift;
  484.   my $verbose = 0;
  485.   $verbose = shift if @_;
  486.  
  487.   # check for one line of POD
  488.   unless(open(POD,"<$file")) {
  489.     warn "Error: $file is unreadable: $!\n";
  490.     return undef;
  491.   }
  492.   
  493.   local $/ = undef;
  494.   my $pod = <POD>;
  495.   close(POD) || die "Error closing $file: $!\n";
  496.   unless($pod =~ /\n=(head\d|pod|over|item)\b/s) {
  497.     warn "No POD in $file, skipping.\n"
  498.       if($verbose);
  499.     return 0;
  500.   }
  501.  
  502.   return 1;
  503. }
  504.  
  505. =head1 AUTHOR
  506.  
  507. Please report bugs using L<http://rt.cpan.org>.
  508.  
  509. Marek Rouchal E<lt>marekr@cpan.orgE<gt>,
  510. heavily borrowing code from Nick Ing-Simmons' PodToHtml.
  511.  
  512. Tim Jenness E<lt>t.jenness@jach.hawaii.eduE<gt> provided
  513. C<pod_where> and C<contains_pod>.
  514.  
  515. =head1 SEE ALSO
  516.  
  517. L<Pod::Parser>, L<Pod::Checker>, L<perldoc>
  518.  
  519. =cut
  520.  
  521. 1;
  522.  
  523.